home *** CD-ROM | disk | FTP | other *** search
/ 17 Bit Software 5: The Fifth Dimension / 17 Bit - The Fifth Dimension (1995)(17 Bit Software)[!].iso / files / 3857.dms / 3857.adf / Update / Startup-2090SCSI < prev    next >
Text File  |  1992-09-02  |  526b  |  24 lines

  1. ; Startup sequence for Hard Disk users...checks for hard disk, then
  2. ; transfers control if it is present. (The script assumes DH2:)
  3. ;
  4. C:SetPatch QUIET
  5. C:BindDrivers
  6.  
  7. C:Assign >NIL: DH2: EXISTS
  8. IF NOT WARN
  9.   ; hard disk is present
  10.   C:Assign SYS: DH2:
  11.   C:Assign C: SYS:C
  12.   C:Assign L: SYS:L
  13.   C:Assign FONTS: SYS:Fonts
  14.   C:Assign S: SYS:S
  15.   C:Assign DEVS: SYS:Devs
  16.   C:Assign LIBS: SYS:Libs
  17.   C:MakeDir RAM:TR
  18.   C:Assign T: RAM:TR
  19.   C:Execute S:Startup-Sequence
  20. Else
  21.   ; no hard disk
  22.   Echo "Hard drive DH2: not found!"
  23. EndIF
  24.